home *** CD-ROM | disk | FTP | other *** search
/ purestock 149: Medical Team / 149 - Medical Team (Purestock) (2006).iso / pc / Purestock-149 / js / popup.js next >
Text File  |  2006-08-04  |  920b  |  22 lines

  1. var agree=false;
  2.  
  3. function DownloadHiRes(I){
  4.     try{
  5.         if (agree==false){
  6.             var w=350;
  7.             var h=150;
  8.             var left=(screen.width)?parseInt((screen.width-w)/2):0;var top=(screen.height)?parseInt((screen.height-h)/3):0;
  9.             var popUp=window.open("Purestock-149/InternetMsg.html?I="+I,"InternetMsg","resizable=0,scrollbars=0,toolbar=0,menubar=0,directories=0,height="+h+",width="+w+",top="+top+",left="+left);
  10.             if (popUp.window.focus){popUp.window.focus()};
  11.             agree=true;
  12.         }else{
  13.             var w=560;
  14.             var h=600;
  15.             var left=(screen.width)?parseInt((screen.width-w)/2):0;var top=(screen.height)?parseInt((screen.height-h)/4):0;
  16.             var popUrl="Purestock-149/Download1.html?I="+I;
  17.             var popUp=window.open(popUrl,"DownloadImage","resizable=0,scrollbars=0,toolbar=0,menubar=0,directories=0,height="+h+",width="+w+",top="+top+",left="+left);
  18.             if (popUp.window.focus){popUp.window.focus()};
  19.         }
  20.     }catch(e){}
  21. }
  22.